Update oXs_out_frsky.cpp
[openXsensor.git] / oXs_Configurator / Python 37 Sources / oxsRpm.py
blob971576fba419c56aab7639ab87093f24043a1f6a
1 from oxsConfig import ttk , W , E , Spinbox ,fRpm , pulsesPerRotationVar
3 #define PULSES_PER_ROTATION 2
5 ttk.Label(fRpm, text="Number of pulses per rotation").grid(row=1, padx= 5 , pady=(20,2))
8 pulsesPerRotationBox = Spinbox(fRpm, from_=1, to=1000, width= 5 , textvariable=pulsesPerRotationVar)
9 pulsesPerRotationBox.grid(column=1, row=1 , padx=5, pady=(20,2))